home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Mac OS SDK / Dev.CD Jul 99 SDK1.toast / Development Kits / Mac OS / QuickDraw3D 1.6 SDK / Mac SampleCode Previous / Grab Bag Samples - Mac / Current QD3D Libs & Headers / Interfaces / QD3DViewerGestalt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-18  |  1.5 KB  |  49 lines  |  [TEXT/MPS ]

  1. /******************************************************************************
  2.  **                                                                              **
  3.  **     Module:        QD3DViewerGestalt.h                                         **                        
  4.  **                                                                              **
  5.  **                                                                              **
  6.  **     Purpose:     Gestalt values for QuickDraw3D Viewer.                     **            
  7.  **                                                                              **
  8.  **                                                                              **
  9.  **                                                                              **
  10.  **     Copyright (C) 1992-1997 Apple Computer, Inc.  All rights reserved.     **
  11.  **                                                                              **
  12.  **                                                                              **
  13.  *****************************************************************************/
  14.  
  15. /*******************************************************************************
  16. These gestalt values will be included in a future version of Gestalt.h from 
  17. universal interfaces.
  18.  
  19. The prefered method is to use the newer version of Gestalt.h when it is 
  20. available rather than this file.  
  21. Until then you must include this file if you want access to these values.
  22. *******************************************************************************/
  23.  
  24. #ifndef QD3DViewerGestalt_h
  25. #define QD3DViewerGestalt_h
  26.  
  27. #ifndef QD3D_h
  28. #include "QD3D.h"
  29. #endif
  30.  
  31. #if defined(OS_MACINTOSH) && OS_MACINTOSH
  32.  
  33. enum {
  34.     gestaltQD3DViewer            = 'q3vc',    /* Quickdraw 3D Viewer attributes         */
  35.     gestaltQD3DViewerPresent    = 0            /* bit 0 set if QD3D Viewer is available */
  36. };
  37.  
  38. #if OLDROUTINENAMES
  39. enum {
  40.     gestaltQD3DViewerNotPresent    = ( 0 << gestaltQD3DViewerPresent ),
  41.     gestaltQD3DViewerAvailable    = ( 1 << gestaltQD3DViewerPresent )
  42. };
  43. #endif
  44.  
  45. #endif  /*  OS_MACINTOSH  */
  46.  
  47. #endif /* QD3DViewerGestalt_h */
  48.  
  49.